home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Developer / SAT / SAT Invaders sample ƒ / gameGlobals.p < prev    next >
Encoding:
Text File  |  1994-07-26  |  830 b   |  41 lines  |  [TEXT/PJMM]

  1. {=================================================}
  2. {========= GameGlobals, globals for SATInvaders ==========}
  3. {=================================================}
  4.  
  5. { Example file for Ingemars Sprite Animation Toolkit. }
  6. { © Ingemar Ragnemalm 1992 }
  7. { See doc files for legal terms for using this code. }
  8.  
  9. { This file defines the resource numbers and global variables for SATInvaders.}
  10.  
  11. unit GameGlobals;
  12.  
  13. interface
  14.  
  15. {uses SAT;}
  16.  
  17.     const
  18. {    Resource numbers}
  19.  
  20.         fileMenuRes = 1004;    { Race menu }
  21.         aboutAlrt = 1000;        { About box }
  22.         gameWindRes = 262;        { game window }
  23.  
  24. { File menu }
  25.         run = 1;
  26.         sound = 3;
  27.         fastAnimation = 4;
  28.         quit = 6;
  29.  
  30.     var
  31. {    Menu handles.  There isn't any apple menu here, since TransSkel will}
  32. {    be told to handle it itself.}
  33.  
  34.         fileMenu: MenuHandle;
  35.  
  36. {Level number.}
  37.         level: longint;
  38.  
  39. implementation
  40.  
  41. end.